home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / amac44d.zip / QSIZ.BAT < prev    next >
DOS Batch File  |  1991-10-21  |  318b  |  13 lines

  1. @echo off
  2. :qsiz.bat          October 17, 1991
  3.         cls
  4.         echo Converts "c:#" (text) to "c:#.φ" (binary)
  5.         if not exist   c:# goto NOTEXIST
  6.         QMAC c:#.φ     c:#   /B /A-
  7.         dir  c:#.φ>c:¡
  8.         del  c:#
  9.         del  c:#.φ
  10.         exit
  11. :NOTEXIST
  12.         echo c:# does not exist 
  13.